home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / BoxKite.dxr / Internal_59_tableau object.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  242 b   |  19 lines

  1. property cards
  2.  
  3. on new me, mycards
  4.   me.cards = mycards
  5.   return me
  6. end
  7.  
  8. on addCard me, newcards
  9.   me.cards.add(newcards)
  10. end
  11.  
  12. on substractcard me, itsym
  13.   me.cards.deleteAt(itsym)
  14. end
  15.  
  16. on getlastcard me
  17.   return me.cards[me.cards.count]
  18. end
  19.